import { AllAPIResponses } from './../../../../index'; declare type Params = { id: number; key: string; }; declare type Payload = { channelName: string; nodeId: number; parentNodeId?: number; timestamp?: string; value: any; }; declare const put: (params: Params, payload: Payload) => Promise>; export default put;